@charset "UTF-8";
/* CSS Document */

body{
	font-family: sans-serif;
	margin:0;
}
header{ 
	display: flex;
	height: 80px;
	background-color: red;
	justify-content: space-between;
	align-items:center;
	padding: 10px;
	position: fixed;
  z-index: 100;
	width: 100%;
}
.logo{
	display: flex;
	align-items:center;
}
.logo img{
	height: 40px;
	margin-right:10px;
}
ul {
  list-style-type: none;
  margin: 10;
  padding: 0;
  overflow: hidden;
  background-color: red;
}

li {
  float: left;
}

li a {
  display: block;
  color: white;
  text-align: center;
  padding: 14px 16px;
  text-decoration: none;
}

/* Change the link color to #111 (black) on hover */
li a:hover {
  background-color: #941212;
}
main{

}
footer{
position: fixed;
left: 0; 
bottom: 0; 
width: 100%;
background-color: red;
color: white;
text-align: center;
}
.content {
  position: fixed;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  color: #f1f1f1;
  width: 100%;
  padding: 20px;
}
#myVideo {
  position: fixed;
  right: 0;
  bottom: 0;
  min-width: 100%; 
  min-height: 100%;
}


#myBtn {
  width: 200px;
  font-size: 18px;
  padding: 10px;
  border: none;
  background:#0510A2;
  color:#FFFFFF;
  cursor: pointer;
}

#myBtn:hover {
  background:#0212C4;
  color: black;
}